creating a random, pronounceable password

chris (2004-05-12 16:04:57)
2746 views
0 replies
first install the Crypt::RandomPassword module, and then try this script, which will create a random password with between 5 and 12 characters:
#!/usr/bin/perl

use Crypt::RandPasswd;
$word = Crypt::RandPasswd->word( 5, 12);
printf "n$wordn";

christo
comment